Skip to content

Instantly share code, notes, and snippets.

@Maciejdziuba
Maciejdziuba / README.md
Last active August 26, 2026 18:21
The Software Factory Playbook — Dex Horthy's 4-gate workflow (Product → Architecture → Program Design → Vertical Slices) as an installable Claude Code skill. From the Dex Horthy episode on David Ondrej's podcast.

The Software Factory Playbook — Dex Horthy's 4-gate workflow as a skill

A Claude Code Agent Skill built from Dex Horthy's (HumanLayer) playbook on David Ondrej's podcast.

"Once the model has written thousands of lines of code, it is harder to change. The sessions that generate design docs are context-light — you get the most model intelligence when you do the hard thinking early."

By default, agents build horizontally: all the backend, then all the frontend, then a 2,000-line diff lands in your lap and reviewing it is your problem. This skill flips that. Every decision that matters gets made before the code exists — where changing your mind costs a sentence, not a rewrite.

What it does

@a-effort
a-effort / scrollbar-gutter-stable.md
Last active August 26, 2026 18:22
Stopping horizontal content shift when a scrollbar paints: the three traps in scrollbar-gutter: stable (nested scroll containers, react-remove-scroll, Tailwind cascade layers)

Stopping horizontal content shift

A scrollbar that appears and disappears takes width from its container's content box on the way in and gives it back on the way out. Anything inside reflows sideways. Symptoms:

  • Filtering a list to fewer results makes the whole page jump left.
  • Switching a tab from long content to short content shifts the panel.
  • Opening a modal shifts the page under the overlay.

The fix is scrollbar-gutter: stable, which reserves the track whether or not the bar is painted. There are three traps.

@MiniCodeMonkey
MiniCodeMonkey / README.md
Last active August 26, 2026 18:20
Build your own personal-ops system: starter prompt + job ideas

Build your own personal-ops system

A small platform on your own machine that runs scheduled jobs for you — research memos, watching things, weekly reviews, self-observation — stores their output, and tells you when something is worth looking at. Some jobs call Claude via the claude CLI; many are plain code.

Two files here:

  • starter-prompt.md — paste into a fresh Claude Code session in an empty directory. It carries the design decisions (job layout, outcome contract, notifications, security model, build order) without prescribing your OS, language, or jobs.
  • ideas.md — a list of jobs the system is good at, grouped by shape.

Why not just Claude's scheduled tasks?

@The-Fireplace
The-Fireplace / MAKING_TRANSLATIONS.md
Last active August 26, 2026 18:15
A Guide to Making Minecraft Mod Translations
  1. Make a GitHub account if you don't have one yet.
  2. Make a fork of the mod you want to translate. My mods can be found here
  3. Browse to src/main/resources/assets/<modid>/lang on your fork of the repository (On modern ports of some of my mods, it will be at common/src/main/resources/assets/<modid>/lang). There, you can see what translations already exist.
  4. If the language you want to translate to isn't there, you'll want to make a new file to put those translations in. See the Locale Code column on this page for the name of the file, and for the extension (.lang or .json), look at the other file names to see which it should be. Generally, mods for 1.12.2 and earlier use .lang and mods for 1.13 and newer use .json. ![](https://media.discordapp.net/attachments/792
@harethcraft15-rgb
harethcraft15-rgb / snow-rider-unblocked.md
Created August 18, 2026 23:49 — forked from saqibjavaidcloud09-svg/snow-rider-unblocked.md
Snow Rider Unblocked – Play Snow Rider 3D Online

Snow Rider Unblocked is a fast, first-person sledding game built around one goal: stay on the mountain for as long as possible without crashing.

Play Spacebar Clicker Online

Snow Rider Unblocked - Play Online Free

Play Snow Rider Unblocked and master Snow Rider 3D with controls, high-score tips, jump timing, gift strategy, sled unlocks, obstacle guides, and mobile help.

How to Play Snow Rider Unblocked

@MartinEesmaa
MartinEesmaa / youtube_formats.md
Last active August 26, 2026 18:11 — forked from AgentOak/youtube_formats.md
Youtube Format IDs

Note: This is all almost full YouTube ID informations. Original owner goes to AgentOak, modified version by Martin Eesmaa.

See the credits and also special thanks in below.

Before this gist has been forked, AgentOak made original gist on November 13 2019 and it was last updated on May 5 2021.

From now on, this forked gist is maintained by Martin Eesmaa since 17 September 2022. I joined to yt-dlp Discord server on 3rd April 2026 with my Discord username: martineesmaa.

Last updated: 20 August 2026

@intellectronica
intellectronica / 0.README.md
Last active August 26, 2026 18:09
SKILL: Fetch YouTube Transcript

YouTube Transcript SKILL

Get youtube-transcript.zip

Use this skill to fetch the transcript of a YouTube video, with or without timestamps.

Use this skill with Claude (by extracting it to .claude/skills/) or with any other agent using Skillz.

Note: This skill is unlikely to run successfully on the Claude web app, since access to YouTube is blocked. Use it with Claude Code or other local agents.

@theBubbly
theBubbly / learning-computer-security.md
Created September 22, 2019 22:01 — forked from miseqs/learning-computer-security.md
Learning Computer Security

Learning Computer Security

About This Guide

This is an opinionated guide to learning about computer security (independently of a university or training program), starting with the absolute basics (suitable for someone without any exposure to or knowledge of computer security) and moving into progressively more difficult subject matter.

It seems that most people don't realize how much information is actually available on the internet. People love to share (especially geeks) and everything you need to become well versed in computer security is already available to you (and mostly for free). However, sometimes knowing where to start is the hardest part - which is the problem that this guide is intended to address. Therefore, this guide can accuratley be described as a 'guide to guides', with additional recommendations on effective learning and execises, based on my own experiences.

Many of the free resources are the best resources and this guide focuses on them. It is intended to provided a comprehensive

@Sepehr13
Sepehr13 / .gitlab-ci.yml
Created August 26, 2026 15:53
Gitlab CI/CD for Flutter
# STEPS TO USE THIS CODE SNIPPET:
# 1. Create a Telegram bot with @BotFather and save the generated token somewhere safe.
# 2. Create a Telegram group and add your bot as an admin.
# 3. Send a random message on the group and use "https://api.telegram.org/bot<BOT_TOKEN>/getUpdates" to get the chat_id of your newly created group
# 4. Replace "chat_id" and "<BOT_TOKEN>" on line 36 of this script.
# 5. Put this ".gitlab_ci.yml" on the root of your project.
# 6. Make sure you also tag your latest commit with your version number.
# 7. Push your code and wait for the pipeline to build and publish your app on Telegram group.